/* Responsive */
@media (max-width: 412px) {
	.hero h1 { font-size: 2.5rem; }
        .nav-links { display: none; }
        .features-grid, .tips-grid { grid-template-columns: 1fr; }
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #58b7fa 0%, #2998dd 100%);
	    height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 1em auto;
            padding: 0 20px;
        }

/* Header */
header {
        background: rgba(255, 254, 240, 0.5);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
	z-index: 1000;
    	display: flex;
    	flex: 0 0 auto;
    	align-items: center;
    	justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: white;
}
nav {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
}
.nav-links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}
.nav-links li a {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 1em;
    flex-direction: row;
    color: #0066ff;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover {
            color: #fff;
}
.logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
.navbar-buttons {
    display: flex;
    justify-content: flex-end;
    margin-right: 1em;
} 
button {
            background: linear-gradient(45deg, #00c851, #58b7fa);
            color: white;
            border: none;
	    margin-left: 10px;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
}
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 1em 0.5em;
            color: #333;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            color: white;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix in="colorNoise" type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.1"/></svg>');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #00c851, #007e33);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 200, 81, 0.4);
        }

        /* Features Section */
        .features {
            background: white;
            position: relative;
	    padding:0.5rem;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -4rem;
            left: 0;
            right: 0;
            height: 4rem;
            background: white;
            transform: skewY(-3deg);
            transform-origin: top right;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .feature-card {
            background: white;
            padding: 0.5rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f0f0f0;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Tips Section */
        .tips {
            background: linear-gradient(135deg, #00c851 0%, #099d45 100%);
            color: white;
	    padding-bottom:0.5rem;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
            gap: 2rem;
        }

        .tip-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .tip-item h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Demo Section */
        .demo {
            background: #f8f9fa;
	    padding-bottom:0.5rem;
        }

        .demo-container {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .email-preview {
            border: 2px solid #e74c3c;
            border-radius: 10px;
            padding: 1.5rem;
            background: #fff5f5;
            margin: 2rem 0;
            position: relative;
        }

        .warning-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .email-header {
            border-bottom: 1px solid #ddd;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        
        /* Interactive elements */
        .interactive-demo {
            margin: 3rem 0;
            text-align: center;
        }

        .scan-button {
            background: linear-gradient(45deg, #00c851, #007e33);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            margin: 1rem;
        }

        .scan-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
        }

        .result-display {
            margin-top: 2rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
        }

        .result-safe {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .result-danger {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

footer {
    text-align: center;
}
/* Title Styles */
.hall-of-fame h1 {
text-align: center;
color: #333333;
margin-bottom: 20px;
}

/* Badge styles */
.badge {
display: inline-block !important;
padding: 5px 10px;
border-radius: 5px;
text-align: center;
margin: 10px;
transition: background-color 0.3s;
}

/* Hover effect for badges */
.badge:hover {
background-color: #0056b3; / Darker blue on hover */
}
