* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            min-height: 100vh;
            color: #333;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .nav-menu a:hover {
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            color: white;
        }

        .btn-primary {
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(235, 51, 73, 0.4);
        }

        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 280px 1fr 280px;
            gap: 25px;
            margin-top: 25px;
        }

        /* Cards */
        .card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .user-profile {
            text-align: center;
            padding: 25px;
        }

        .user-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 15px;
            border: 4px solid #eb3349;
            object-fit: cover;
        }

        .rating-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            font-size: 32px;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 50px;
            margin: 10px 0;
            box-shadow: 0 5px 20px rgba(235, 51, 73, 0.3);
        }

        /* Filter Section */
        .filter-section {
            padding: 20px;
        }

        .filter-section h3 {
            margin-bottom: 15px;
            color: #eb3349;
        }

        .filter-group {
            margin-bottom: 15px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }

        .filter-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .filter-group select:focus {
            outline: none;
            border-color: #eb3349;
        }

        /* Main Content */
        .main-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .photo-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .photo-container img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 600px;
            object-fit: cover;
        }

        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(235, 51, 73, 0.9), transparent);
            color: white;
            padding: 30px;
        }

        .photo-info h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .photo-info p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Rating Section */
        .rating-section {
            background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
        }

        .rating-section h3 {
            margin-bottom: 20px;
            color: #c0392b;
            font-size: 20px;
        }

        .rating-buttons {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            flex-wrap: wrap;
        }

        .rating-btn {
            flex: 1;
            min-width: 60px;
            padding: 15px 10px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            color: white;
        }

        .rating-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .rating-btn:nth-child(1) { background: linear-gradient(135deg, #ffa07a, #ff8c69); }
        .rating-btn:nth-child(2) { background: linear-gradient(135deg, #ff8c69, #ff7f50); }
        .rating-btn:nth-child(3) { background: linear-gradient(135deg, #ff7f50, #ff6347); }
        .rating-btn:nth-child(4) { background: linear-gradient(135deg, #ff6347, #ff4500); }
        .rating-btn:nth-child(5) { background: linear-gradient(135deg, #ff4500, #ff3333); }
        .rating-btn:nth-child(6) { background: linear-gradient(135deg, #ff3333, #ff1a1a); }
        .rating-btn:nth-child(7) { background: linear-gradient(135deg, #ff1a1a, #e60000); }
        .rating-btn:nth-child(8) { background: linear-gradient(135deg, #e60000, #cc0000); }
        .rating-btn:nth-child(9) { background: linear-gradient(135deg, #cc0000, #b30000); }
        .rating-btn:nth-child(10) { background: linear-gradient(135deg, #b30000, #8b0000); }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            font-weight: 500;
            color: #555;
            text-decoration: none;
        }

        .action-btn:hover {
            border-color: #eb3349;
            color: #eb3349;
            transform: translateY(-2px);
        }

        .action-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Friends Grid */
        .friends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .friend-card {
            text-align: center;
        }

        .friend-card img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 8px;
            border: 2px solid #ffafbd;
        }

        .friend-card p {
            font-size: 12px;
            font-weight: 500;
        }

        /* Language Selector */
        .lang-selector {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .lang-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s;
            overflow: hidden;
        }

        .lang-btn:hover {
            transform: scale(1.1);
            border-color: #eb3349;
        }

        .lang-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .main-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                order: 2;
            }

            .main-content {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
            }

            .rating-buttons {
                gap: 5px;
            }

            .rating-btn {
                min-width: 50px;
                padding: 12px 8px;
                font-size: 16px;
            }
        }

        /* Poll Section */
        .poll-section {
            padding: 20px;
        }

        .poll-option {
            padding: 12px;
            margin: 8px 0;
            background: #ffebee;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .poll-option:hover {
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            color: white;
        }

        .poll-option input[type="radio"] {
            cursor: pointer;
        }

        /* Login Box */
        .login-box {
            text-align: center;
            padding: 25px;
            background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
            border-radius: 15px;
        }

        .login-box h3 {
            margin-bottom: 15px;
            color: #c0392b;
        }

        .share-box {
            background: #ffebee;
            padding: 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .share-box input {
            flex: 1;
            padding: 10px;
            border: 2px solid #eb3349;
            border-radius: 8px;
            font-size: 14px;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .tag {
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .tag:hover {
            transform: scale(1.05);
        }

        .section-title {
            background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            font-size: 16px;
            font-weight: 600;
        }

        .heart-icon {
            color: #eb3349;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }